FREE STRING$

This command will free the specified string from memory, particularly useful if you are using large global strings that consume a lot of memory.

  Syntax
Return String=FREE STRING$()
  Returns

A blank string is returned, indicating the memory has been freed

  Description

The string freed is the return string you specify.

  Example Code
a$="hello"
b$="good bye"
print a$," and ",b$
a$=free string$()
print a$," and ",b$
do
loop
end
  See also

CORE Commands Menu
Index